home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 081 / ommm_107.arc / OMMM.NEW < prev   
Text File  |  1987-09-16  |  11KB  |  245 lines

  1. This oMMM has some new routing verbs and some that are translations of old
  2. routing verbs.  The following translations have to be made:
  3.  
  4. DoCrash  -> DoCM
  5. ArcTo    -> ArcDirect
  6. **NEW**  -> OneDirect
  7. **NEW**  -> UnDirect
  8. Direct   -> NormDirect
  9. Hold     -> ArcHold
  10. Crash    -> ArcCM
  11. OneCrash -> OneCM
  12. UnCrash  -> UnCM
  13. NormCrash-> NormCM
  14.  
  15. Here is what each verb does:
  16.  
  17.                 SCHED..... Starts a schedule.  All oMMM statements between
  18.                            this statement and the next SCHED statement will
  19.                            be executed if the schedule tag matches the one
  20.                            given on the command line.  tag is a character
  21.                            that can be in upper or lower case.
  22.  
  23.                                     SYNTAX:   Sched tag
  24.  
  25.        
  26.                 LEAVE..... Mark all packets to the listed nodes such that
  27.                            Opus will not attempt to send them.  Use the -z
  28.                            command line option of oMMM to make the packets
  29.                            be recognized by Opus for future sending.  Use
  30.                            this option with extreme care!
  31.  
  32.                                     SYNTAX: Leave destinations
  33.  
  34.                                     ACTUAL: xxxxyyyy.?UT->xxxxyyyy.N?T
  35.                                             xxxxyyyy.?LO->xxxxyyyy.N?O
  36.  
  37.  
  38.                 SEND...... If a node in the destination list has a packet     
  39.                            that has been marked as a "do not send" packet 
  40.                            by using LEAVE, then make it so that the packet 
  41.                            can once again be sent.
  42.  
  43.                                     SYNTAX: Send destinations
  44.  
  45.                                     ACTUAL: xxxxyyyy.N?T->xxxxyyyy.?UT
  46.                                             xxxxyyyy.N?O->xxxxyyyy.?LO
  47.  
  48.                                     EXAMPLE to do local schedule with some
  49.                                             extra nodes:
  50.  
  51.                                             ; First mark all nodes as no-send
  52.                                             Leave All
  53.                                             ; Now send to our net and list
  54.                                             Send Ournet 132/101 124/108
  55.  
  56.  
  57.                 DOCM...... If a node in the destination list has a packet     
  58.                            that has been marked as a "do not send" packet 
  59.                            by using LEAVE, and the packet is a CM type of
  60.                            packet, then that packet is marked for sending.
  61.  
  62.                                     SYNTAX: DoCM
  63.  
  64.                                     ACTUAL: xxxxyyyy.NCT->xxxxyyyy.CUT
  65.                                             xxxxyyyy.NCO->xxxxyyyy.CLO
  66.  
  67.  
  68.                 POLL...... This creates a dummy .FLO file if there are no
  69.                            files existing for the given node that are not
  70.                            on hold. If there are files in the holding area 
  71.                            which are going to the given node, and they are 
  72.                            not on hold, then the POLL statement will do 
  73.                            nothing.
  74.  
  75.                                     SYNTAX: Poll destinations
  76.  
  77.                                     ACTUAL: If no xxxxyyyy.[FCD]LO then
  78.                                             creates xxxxyyyy.FLO
  79.  
  80.  
  81.                 ROUTE..... Host route any remaing .OUT packets.  Any
  82.                            packets remaining in the outbound area with an
  83.                            extension of .OUT will be routed to the host
  84.                            for the network.  This should normally be the
  85.                            last statement in the oMMM control file (other
  86.                            than Poll statements - if a Poll statement 
  87.                            precedes the Route statement, then it will create 
  88.                            a .OUT file which will then be host routed - not 
  89.                            the behavior that would normally be expected) for 
  90.                            any given schedule.
  91.  
  92.                                     SYNTAX: Route
  93.  
  94.                                     ACTUAL: xxxxyyyy.OUT->xxxx0000.OUT
  95.  
  96.  
  97. [This     ]     UNROUTE... Unbundles any .OUT files that are addressed to 
  98. [option   ]                nodes of the form net/0.  This operation sometimes 
  99. [is       ]                will take a while to perform if a lot of host 
  100. [not      ]                routing has been done.
  101. [yet      ]
  102. [available]                         SYNTAX: UnRoute
  103.  
  104.  
  105.                 ARCDIRECT. Send as direct mail during pre-set schedules.
  106.                            This command actually ARC's up the packets just
  107.                            like ARCmail would do, so you must be sure that
  108.                            the receiving system either has ARCmail that runs
  109.                            at regular intervals, or is running Opus 1.00 or
  110.                            higher.
  111.  
  112.                                     SYNTAX:   ArcDirect destination [routelist]
  113.  
  114.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.DLO
  115.                                               with an ARCmail file listed
  116.  
  117.                                     EXAMPLES: ArcDirect 124/0 124/ALL
  118.                                               ArcDirect 135/1
  119.  
  120.  
  121.                 ONEDIRECT. This call is identical to the above call except
  122.                            that all nodes listed have the packets ARCmailed
  123.                            individually.  This allows statements to be used
  124.                            in a program like XlatList<tm> that will send to
  125.                            a list of nodes.
  126.  
  127.                                     SYNTAX: OneDirect destinations
  128.  
  129.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.DLO
  130.                                               with an ARCmail file listed
  131.  
  132.  
  133.                 UNDIRECT.. Any packets to the nodes in the list that are
  134.                            marked as DIRECT are marked normal.
  135.  
  136.                                     SYNTAX: UnDirect destinations
  137.  
  138.                                     ACTUAL: xxxxyyyy.DUT->xxxxyyyy.OUT
  139.                                             xxxxyyyy.DLO->xxxxyyyy.FLO
  140.  
  141.  
  142.                 NORMDIRECT Any packets to the nodes in the list are sent
  143.                            as DIRECT type packets that are compatible with
  144.                            other <tm> software.  This basically means that
  145.                            the packet is not ARC'd.
  146.  
  147.                                     SYNTAX: NormDirect destinations
  148.  
  149.                                     ACTUAL: xxxxyyyy.OUT->xxxxyyyy.DUT
  150.                                             xxxxyyyy.FLO->xxxxyyyy.DLO
  151.  
  152.  
  153.                 ARCHOLD... Prepare an ARCmail archive, but do not allow an
  154.                            outgoing phone call.  The archive will be held for the
  155.                            other system to pickup. This has the same comment
  156.                            as the ARCTO statement - ie the receiver must have
  157.                            some way to unARC the packets.
  158.  
  159.                                     SYNTAX: ArcHold destination [routelist]
  160.  
  161.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.HLO
  162.                                               with an ARCmail file listed
  163.  
  164.  
  165.                 ONEHOLD... This call is identical to the above call except
  166.                            that all nodes listed have the packets ARCmailed
  167.                            individually.  This allows statements to be used
  168.                            in a program like XlatList<tm> that will send to
  169.                            a list of nodes.
  170.  
  171.                                     SYNTAX: OneHold destinations
  172.  
  173.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.HLO
  174.                                               with an ARCmail file listed
  175.  
  176.  
  177.                 UNHOLD.... Any packets to the nodes in the list that are
  178.                            marked as HOLD are marked normal.
  179.  
  180.                                     SYNTAX: UnHold destinations
  181.  
  182.                                     ACTUAL: xxxxyyyy.HUT->xxxxyyyy.OUT
  183.                                             xxxxyyyy.HLO->xxxxyyyy.FLO
  184.  
  185.  
  186.                 NORMHOLD.. Any packets to the nodes in the list are sent
  187.                            as HOLD type packets that are compatible with
  188.                            other <tm> software.  This basically means that
  189.                            the packet is not ARC'd.
  190.  
  191.                                     SYNTAX: NormHold destinations
  192.  
  193.                                     ACTUAL: xxxxyyyy.OUT->xxxxyyyy.HUT
  194.                                             xxxxyyyy.FLO->xxxxyyyy.HLO
  195.  
  196.  
  197.                 ARCCM..... Send to a system which supports continuous
  198.                            mail.  Such systems include other Opus systems
  199.                            and Seadog (v4.00).  Again, the receiver must have
  200.                            a way to unARC the packets.
  201.  
  202.                            In the Opus control file, you have some control
  203.                            over continuous mail.  See the part dealing with
  204.                            "Matrix send CM only".
  205.  
  206.                                     SYNTAX: ArcCM destination [routelist]
  207.  
  208.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.CLO
  209.                                               with an ARCmail file listed
  210.  
  211.  
  212.                 ONECM..... This call is identical to the above call except
  213.                            that all nodes listed have the packets ARCmailed
  214.                            individually.  This allows statements to be used
  215.                            in a program like XlatList<tm> that will send to
  216.                            a list of nodes.
  217.  
  218.                                     SYNTAX: OneCM destinations
  219.  
  220.                                     ACTUAL:   xxxxyyyy.OUT->xxxxyyyy.CLO
  221.                                               with an ARCmail file listed
  222.  
  223.  
  224.                 UNCM...... Any packets to the nodes in the list that are
  225.                            marked as CM are marked normal.
  226.  
  227.                                     SYNTAX: UnCM destinations
  228.  
  229.                                     ACTUAL: xxxxyyyy.CUT->xxxxyyyy.OUT
  230.                                             xxxxyyyy.CLO->xxxxyyyy.FLO
  231.  
  232.  
  233.                 NORMCM.... Any .OUT packets to the nodes in the list are sent
  234.                            as CM type packets that are compatible with
  235.                            other <tm> software.  This basically means that
  236.                            the packet is not ARC'd.
  237.  
  238.                                     SYNTAX: NormCM destinations
  239.  
  240.                                     ACTUAL: xxxxyyyy.OUT->xxxxyyyy.CUT
  241.                                             xxxxyyyy.FLO->xxxxyyyy.CLO
  242.  
  243.  
  244.  
  245.